home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
instools
/
prelude.zip
/
LINGUA13.EXE
/
UI_TEXT.H
< prev
next >
Wrap
C/C++ Source or Header
|
1994-02-17
|
734b
|
31 lines
/* ui_text.h */
#ifndef UI_TEXT_H
#define UI_TEXT_H
#ifdef __cplusplus
extern "C" {
#endif
int ui_loadtext(char *fname,char *vers);
void ui_unloadtext(void);
char *ui_filetext(unsigned pos);
char **ui_filearray(unsigned pos);
extern char **ui_text;
#define ZEROTH ui_text[0]
#define FIRST ui_text[1]
#define SECOND ui_text[2]
#define THIRD (ui_text+3)
#define EIGHTH ui_text[8]
#define NINTH ui_filetext(0)
#define TENTH ui_filetext(1)
#define ELEVEN ui_filetext(2)
#ifdef __cplusplus
}
#endif
#endif